home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / mswlogo3.zip / INSTALL.BAT next >
DOS Batch File  |  1993-03-04  |  882b  |  37 lines

  1. echo off
  2. echo * 
  3. echo * This simple install procedure assumes that:
  4. echo *
  5. echo * Windows is installed on C:\windows.
  6. echo * Pkunzip is in your path.
  7. echo * You are in the directory you want it installed.
  8. echo * The .ZIP's are in the current directory.
  9. echo *
  10. echo * It does NOT take care of adding the icon to windows (.TXT)
  11. echo * 
  12. echo * If any of these are not true hit Control-C to abort
  13. echo * and install manually according to (.TXT)
  14. echo * 
  15. echo on
  16. pause
  17. pkunzip mswlogo
  18. del mswlogo.zip /p
  19. mkdir logolib
  20. cd logolib
  21. pkunzip ..\logolib
  22. cd ..
  23. del logolib.zip /p
  24. mkdir examples
  25. cd examples
  26. pkunzip ..\examples
  27. cd ..
  28. del examples.zip /p
  29. copy bwcc.dll c:\windows
  30. del bwcc.dll /p
  31. echo off
  32. echo * 
  33. echo * To start Logo immediately enter "WIN LOGO" (or WIN LOGO30)
  34. echo * at the DOS prompt. See .TXT for creating an Icon for Logo.
  35. echo * 
  36. echo on
  37.